@charset 'utf-8';

/*共通部分--------------------------------------
------------------------------------------------
------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main {
  line-height: 1.5;
}

body {
  font-family: '游明朝';
  background-color: #F5F5F5;
}


li {
  list-style: none;
}

h1 {
  margin: 0;

}

h2 {
  margin: 0;
  padding-bottom: 37px;
  font-family: Garamond;
  font-size: 1.86rem;
  font-weight: normal;
  text-align: center;
}

h3 {
  margin: 0;
  text-align: center;
  font-size: 1.28rem;
  font-family: Garamond;
}


/*スマホナビゲーション*/
/*========= ナビゲーションのためのCSS ===============*/
.nav_arrow {
  display: none;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #E7E2D9;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Garamond';
  font-weight: normal;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 8px;
  right: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background-color: #333;
  width: 32px;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*headerここから-------------------------------------
---------------------------------------------------
---------------------------------------------------*/

.header {
  position: relative;
  width: 100%;
  z-index: 10;
  opacity: 1;
  height: 64px;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  width: 100%;
}
.header_title {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 64px;
}

.header_title img {
  position: absolute;
  top: 16px;
  width: 54%;
  padding-left: 16px;
}

.header_inner_catch img {
  position: absolute;
  width: 79%;
  top: 376px;
  left: 24px;
}

.openbtn1 {
  display: flex;
}

/*main-------------------------------------
---------------------------------------------------
---------------------------------------------------*/

/*worksここから-------------------------------------
---------------------------------------------------
---------------------------------------------------*/
.section_works {
  padding-top: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 60px;
  background-color: #F5F5F5
}

.section_works h2 span {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-family: '游明朝';
  font-size: 0.85rem;
  border-top: 1px solid #333;
  width: 20%;
  padding-top: 8px;
}

.section_works_img img {
  display: flex;
  margin: 0px auto 34px;
  width: 73%;
}

.works_title {
  margin: 0;
  padding-bottom: 40px;
  text-align: center;
  font-family: Garamond;
  font-size: 1.71rem;
}

.works_list {
  position: relative;
  font-family: '游明朝';
  font-size: 1rem;
  text-align: left;
  padding-left: 8px;
  margin: 0px auto 24px;
}

.works_list::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  min-height: 16px;
  background: #AFA7A7;
  position: absolute;
  left: 0;
}

.works_list_inner {
  margin:0px auto 40px;
}
.works_list_inner:last-child{
  margin-bottom: 0px;
}
/*footerここから-----------------------------------
---------------------------------------------------
---------------------------------------------------*/
.footer {
  padding-right: 24px;
  padding-left: 24px;
  background-color: #E7E2D9;
  font-family: 'Garamond';
}

.footer_logo {
  text-align: center;

}

.footer_logo img {
  width: 64%;
  padding-top: 24px;
  padding-bottom: 10px;
}

.footer_content {
  text-align: center;
  padding-left: 0;
}

.footer_content ul {
  margin: 0;
  padding-left: 0px;
}

.footer_content h4 {
  font-size: 1.71rem;
  padding-bottom: 3px;
  margin: 0;
}

.footer_mail {
  font-size: 2rem;
  color: #333;

}

.footer_copy {
  text-align: center;
  padding-top: 29px;
  padding-bottom: 8px;
}

.footer_copy small {
  font-size: 1rem;
}


/*PCメディアクエリここから---------------------------------------
-----------------------------------------------------------------
-----------------------------------------------------------------
------------------------------------------------------------------*/
@media(min-width:768px) {
  html {
    font-size: 16px;
    max-width: 100vw;
    margin: 0 auto;
    color: #333;
  }

  h2 {
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
    font-size: 1.75rem;
    padding-bottom: 77px;
  }

  h3 {
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    font-family: Garamond;
  }


  /*navここから-----------------------------
  ------------------------------------------
-------------------------------------------*/

  .main-nav {
    display: flex;
    margin: 0;
  }

  .nav_arrow {
    display: block;
    margin-right: 48px;
  }

  .openbtn1 {
    display: none;
    margin: 0;
  }


  .page_header_logo img {
    width: 18%;
    top: 24px;
  }

  .header_inner_catch img {
    position: absolute;
    width: 47%;
    top: 344px;
    left: 160px;
  }


  /*aboutここから---------------------------------
----------------------------------------------------
---------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

.section_works {
  padding-top: 73px;
  padding-left: 160px;
  padding-right: 160px;
  padding-bottom: 120px;
}
.section_works_img img {
  width: 50%;
  margin: 0px auto 74px;
}
.section_works h2 span{
  font-size: 0.875rem;
}
.works_title{
  font-size: 1.625rem;
  padding-bottom: 60px;
}
.works_list{
  margin: 0px auto 40px;
  max-width: 720px;
  padding-left: 16px;
}
.works_list::before{
  width: 6px;
  min-height: 18px;
}
.works_list_inner{
  margin: 0px auto 60px;
  max-width: 720px;
}

  /*footerここから------------------------------------
----------------------------------------------------
---------------------------------------------------*/
.footer_logo img {
  width: 38%;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer_content h4 {
  font-size: 3rem;
}

.footer_content {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
}

.footer_mail {
  font-size: 3.5rem;
}

.footer_copy {
  padding-top: 73px;
  padding-bottom: 17px;
}

.footer_copy small {
  font-size: 1.75rem;
}










}